@font-face {
  font-family: 'sharetech-regular';
  src: url(https://extremities.neocities.org/mainFont/sharetech-regular-webfont.woff);
}
      
body {
  color: white; 
  background: rgba(0,6,25,1);
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: 'sharetech-regular';
  
  overflow-y:auto;
}

@keyframes showContainer {
  0% {
    padding: 0;
    min-width: 0;
    width: 0;
    font-size: 0px;
    opacity :0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes showText {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.container {
  width: 70%;
  min-width: 250px;
  max-width: 33vw;
  border-radius: 20px;
  background: rgba(0,12,33,0.5);
  z-index: 2;
  padding: 2rem;
  
  position: relative;
  top: 22.5%;
  left: 50%;
  
  transform: translateX(-50%);
  
  border: solid;
  border-color: rgba(0,35,120,0.7);
  
  animation-name: showContainer;
  animation-duration: 1.35s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.center {
  height: 100vh;
}

.main_gradient {
  z-index: -99;
  position: fixed;
  background-image: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0), rgba(0,0,0,0.75));
  width: 100vw;
  height: 100vh;
}

img {
  pointer-events: none; 
  max-width: inherit;
  max-height: inherit;
  height: inherit;
  width: inherit;
  object-fit: cover;
}

a { /* removes the blue link */
  color: inherit; 
  text-decoration: none; 
}

.header {
  width: 100%;
  display:inline-block; 
  margin-bottom: 25px;
}

.header > h1 {
  font-weight:normal;
  margin: 0;
  padding: 0;
  font-size: 3vw; 
  opacity: 0;
  animation-name: showText;
  animation-delay: 1.85s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.header > span {
  text-shadow: rgba(255,255,255,0.9) 0px 0px 21px;
  padding-top:0.75vw;
  height: 100%;
  
  font-size: 2vw;
  opacity: 0;
  animation-name: showText;
  animation-duration: 1s;
  animation-delay: 1.35s;
  animation-fill-mode: forwards;
}

.main {
 line-height: 1.5; 
}

.arbitrary_div {
  position: relative;
  top: 22.5%;
  height: 15%;
  width: 100vw;
}

.back_button {
  position:relative;
  top:22.5%;
  margin-top: 20px;
  letter-spacing: 7px;
  text-align:center; 
}

.back_button > a {
  font-size: 17px;
  display:inline-block;
  width: 52.5px;
  padding-bottom:3.33px;
  transition: 0.5s;
  border-bottom-style: solid;
  border-color: rgba(0,35,120,1);
}

.back_button > a:hover {
  width: 107px;
  letter-spacing:14px;
}


.back_button > a:after {
  content: "//";
  position: relative;
  left: 55px;
  opacity: 0;
  transition: 0.35s;
  letter-spacing: 7px;
}

.back_button > a:hover:after {
  left: 5px;
  opacity: 1;
  letter-spacing:7px;
}

@media (max-width: 768px) {
  /*
  .container {
      position: relative;
      margin: 0px auto;
      padding: 2rem;
      
      top: 0;
      left: 0;
      transform: translate(0, 0);
    } */
    
  .header > h1 {
    font-size: 23px;
  }
  .header > span {
    padding-top: 5.76px;
    font-size: 15.36px;
  }
}

@media (min-width: 1300px) {
  .header > h1 {
    font-size: 39px;
  }
  .header > span {
    padding-top:9.75px;
    font-size: 26px;
  }
}